UserCSS - 粗體字加上標記線
UserCSS
粗體字級 1、粗體字級 2
*
code:style.css
.level-1 {
background: linear-gradient(
to bottom,
transparent 0%,
transparent 66%,
#ffde2e 34%,
#ffde2e 100%
);
}
.level-2 {
background: linear-gradient(
to bottom,
transparent 0%,
transparent 66%,
#ffd90c 34%,
#ffd90c 100%
);
}
粗體字
code:style.css
/* 二重括弧による強調をマーカーっぽくする */
/*
.line strong:not(class) {
background: linear-gradient(
transparent 10%,
#ffde2e 25%,
#ffde2e 70%,
transparent 90%
);
}
*/